home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000134_fdc@columbia.edu_Wed Jun 4 12:59:45 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  70 lines

  1. Article: 14359 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: cutape
  6. Date: 4 Jun 2003 12:55:45 -0400
  7. Organization: Columbia University
  8. Lines: 53
  9. Message-ID: <bbl8ah$pvn$1@watsol.cc.columbia.edu>
  10. References: <3834495c.0306031601.34eb05ba@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1054745746 26271 128.59.39.139 (4 Jun 2003 16:55:46 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 4 Jun 2003 16:55:46 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14359
  16.  
  17. In article <3834495c.0306031601.34eb05ba@posting.google.com>,
  18. Joyce <joyce_haferman@yahoo.com> wrote:
  19. : I am using Kermit's cutape on a Solaris system.
  20. : It appears to work correctly, but when I try to read it with Kermit's
  21. : ostape it gives me the following output, but no file:
  22. : # ./cutape cutape.c
  23. : Tape /dev/rmt/0, volume KERMIT, owner
  24. : recfm VB, blocksize 8192, lrecl 300, type e
  25. :   1 CUTAPE.C
  26. Thus you have created an IBM OS-format tape with variable-block
  27. record format and EBCDIC encoding; blocksize and logical record
  28. length as shown.
  29.  
  30. : # ./ostape
  31. : 0+3 records in
  32. : 0+1 records out
  33. : VOL: 'KERMIT'
  34. : Filename:  'cutape.c'
  35. : rl: 300, bs: 8192, rf: V
  36. : 0+2 records in
  37. : 0+1 records out
  38. : dd cannot read cutape.c in V formatUnexpected ID header label:
  39. : EOF1CUTAPE.C         KERMIT00010001       10315 103150000004
  40. : Unexpected ID header label:
  41. : EOF2V081920030030                     B
  42. : All done! Files Read: 0 -- Files Skipped: 1
  43. : Question: What software do I use to read the cutape tape after it copies
  44. : the file?  Can I use dd or do I need a program to read the tape cutape
  45. : created?
  46. :
  47. These programs were used successfully for many years on Ultrix 1.0 and later,
  48. and then SunOS 4.0 and 4.1.  We have never tried them on Solaris.  It looks
  49. like some tinkering might be necessary; either record boundaries are not
  50. being recorded correctly by cutape, or ostape is not identifying them.
  51.  
  52. Questions:
  53.  
  54.  . Do you really need to write IBM mainframe format tapes?
  55.    If not, you might want to try cutape's "a" option to write
  56.    ANSI "D" format, and then you can use ansitar to read them.
  57.  
  58.  . Assuming you really do intend to write IBM EBCDIC tapes, you'll
  59.    need to find out whether cutape-generated tapes can be read
  60.    on a real IBM mainframe.  If so, then ostape is at fault.
  61.    If not, then cutape needs changes for Solaris.
  62.  
  63. - Frank
  64.